Draft Wire/ru

Draft Wire

Расположение в меню
Черчение → DWire
Верстаки
Draft, Arch
Быстрые клавиши
W I
Представлено в версии
-
См. также
Линия, B-сплайн

Description

Описание

Инструмент «ломаная» создает полилинию (последовательность строк из нескольких сегментов) в текущей work plane. Он берет linewidth and color , предварительно установленный на вкладке «Задачи». Инструмент Wire ведет себя как инструмент Draft Line, за исключением того, что он не останавливается после двух точек.

The corners of a Draft Wire can be filleted (rounded) or chamfered by changing its ДанныеFillet Radius or ДанныеChamfer Size respectively. It is also possible to subdivide the edges of a Draft Wire by changing its ДанныеSubdivisions property.

Create

Usage

See also: Draft Tray, Draft Snap and Draft Constrain.

Использование

  1. Нажмите кнопку Draft Wire или нажмите W, затем клавиши I
  2. Щелкните первую точку на трехмерном изображении или введите coordinate
  3. Нажмите дополнительную точку на трехмерном представлении или введите coordinate
  4. Нажмите F или C или дважды щелкните последнюю точку или щелкните по первой точке, чтобы закончить или закрыть провод. Если провод закрыт, он также будет лицом, даже если он отображается в виде каркаса.

Options

The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).

Join

Usage

  1. The end points of the Draft Lines and/or Draft Wires to be joined must be exactly coincident. If required first adjust points to ensure that this is the case.
  2. Select two or more Draft Lines and/or Draft Wires.
  3. There are several ways to invoke the command:
    • Press the Draft Wire button.
    • Select the Drafting → Polyline option from the menu.
    • Use the keyboard shortcut: P then L.

Notes

Properties

See also: Property editor.

A Draft Wire object is derived from a Part Part2DObject and inherits all its properties. It also has the following additional properties:

Data

Draft

View

Draft

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

To create a Draft Wire use the make_wire method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makeWire method.

wire = make_wire(pointslist, closed=False, placement=None, face=None, support=None)
wire = make_wire(Part.Wire, closed=False, placement=None, face=None, support=None)

Example:

import FreeCAD as App
import Draft

doc = App.newDocument()

p1 = App.Vector(0, 0, 0)
p2 = App.Vector(1000, 1000, 0)
p3 = App.Vector(2000, 0, 0)

wire1 = Draft.make_wire([p1, p2, p3], closed=True)
wire2 = Draft.make_wire([p1, 2*p3, 1.3*p2], closed=True)
wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True)

doc.recompute()